The gxPoint structure is defined as follows:
struct gxPoint {
Fixed x;
Fixed y;
};
The location of the origin depends on the context where you use the point; for example, it might be the upper-left corner of a view port.
Notice that the x and y fields are of type Fixed . QuickDraw GX allows you to specify fractional coordinate positions.
| Previous | Chapter Contents | Chapter Top | Next |